home *** CD-ROM | disk | FTP | other *** search
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
- <HTML lang="en">
- <HEAD>
- <TITLE>Cache</TITLE>
- </HEAD>
- <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
- <dtml-var manage_tabs>
-
-
- <h2>Manual Cache Garbage Collection</h2><P>
-
-
- <table>
-
- <tr><td>
- <strong>Full Sweep</strong><br>
- Make a single pass through the cache, removing any objects that are no
- longer referenced, and deactivating objects that have not been
- accessed in the number of seconds given in the input box to the right
- of this text.
- </td><td>
- <form action="<dtml-var URL1>/manage_full_sweep" method=GET>
- <input type="text" name="value:int" value="<dtml-var cache_age html_quote>" size=6><br>
- <input type="submit" value="Full Sweep">
- </form></td></tr>
-
- <tr><td>
- <strong>Minimize</strong><br>
- Make multiple passes through the cache, removing any objects that are no
- longer referenced, and deactivating objects that have not been
- accessed in the number of seconds given in the input box to the right
- of this text.
- </td><td>
- <form action="<dtml-var URL1>/manage_minimize" method=GET>
- <input type="text" name="value:int" value="<dtml-var cache_age html_quote>" size=6><br>
- <input type="submit" value="Minimize">
- </form></td></tr>
-
- </table
-
-
- <dtml-if cacheStatistics>
- <h3>Cache Statistics</h3>
- <table>
-
- <dtml-in cacheStatistics>
- <tr><th align=left><dtml-var sequence-key></th>
- <td><dtml-var sequence-item></td>
- </tr>
- </dtml-in>
-
- </table>
- </dtml-if>
-
- <dtml-if show_cache_detail>
- <h4>Cache Details</h4><P>
-
- <table border><tr><th>Object Class</th><th>Count</th></tr>
- <dtml-in cache_detail>
- <tr><td><dtml-var sequence-key></td><td><dtml-var sequence-item></td></tr>
- </dtml-in>
- </table>
- </dtml-if>
-
- <dtml-if show_cache_extreme_detail>
- <h4>Objects in the cache</h4><P>
-
- <table border><tr><th>Object ID</th>
- <th>Object Class</th>
- <th>Reference Count</th>
- <th>References</th>
- </tr>
- <dtml-in cache_extreme_detail mapping>
- <tr><td><dtml-var oid></td>
- <td><dtml-var klass></td>
- <td><dtml-var rc></td>
- <td><dtml-var references></td>
- </tr>
- </dtml-in>
- </table>
- </dtml-if>
-
- </BODY></HTML>
-
-